type net/http.htmlSig

19 uses

	net/http (current package)
		sniff.go#L67: 	htmlSig("<!DOCTYPE HTML"),
		sniff.go#L68: 	htmlSig("<HTML"),
		sniff.go#L69: 	htmlSig("<HEAD"),
		sniff.go#L70: 	htmlSig("<SCRIPT"),
		sniff.go#L71: 	htmlSig("<IFRAME"),
		sniff.go#L72: 	htmlSig("<H1"),
		sniff.go#L73: 	htmlSig("<DIV"),
		sniff.go#L74: 	htmlSig("<FONT"),
		sniff.go#L75: 	htmlSig("<TABLE"),
		sniff.go#L76: 	htmlSig("<A"),
		sniff.go#L77: 	htmlSig("<STYLE"),
		sniff.go#L78: 	htmlSig("<TITLE"),
		sniff.go#L79: 	htmlSig("<B"),
		sniff.go#L80: 	htmlSig("<BODY"),
		sniff.go#L81: 	htmlSig("<BR"),
		sniff.go#L82: 	htmlSig("<P"),
		sniff.go#L83: 	htmlSig("<!--"),
		sniff.go#L237: type htmlSig []byte
		sniff.go#L239: func (h htmlSig) match(data []byte, firstNonWS int) string {